home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Developer & Web Development Tools / Twistpad 1.64 / Setup.exe / $APPDATA / Carthago / Twistpad / Snippets / delphi.tsf next >
Text File  |  2006-07-26  |  2KB  |  159 lines

  1. Delphi
  2. T=Delphi Project
  3. program ^\;
  4.  
  5. uses 
  6.     forms;
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.Title := '';
  13.   Application.CreateForm(TMyForm, MyForm);
  14.   Application.Run;
  15. end.
  16. T=Delphi Project (simple)
  17. program ^\;
  18.  
  19. uses 
  20.     ;
  21.  
  22. {$R *.RES}
  23. begin
  24.  
  25. end.
  26. T=Delphi Unit
  27. unit ^\;
  28.  
  29. interface
  30.  
  31. uses
  32.     windows,
  33.     messages;
  34.     
  35. type
  36.   TMyForm = class( TForm )
  37.     
  38.     
  39.  private
  40.     { Private declarations }
  41.  public
  42.     { Public declarations }
  43.  end;
  44.  
  45.  
  46. implementation
  47.  
  48. {$R *.DFM}
  49.  
  50.  
  51. end.
  52. T=array[var]
  53. array[0..^\] of ;
  54. T=array[const]
  55. array[0..^\] of = ();
  56. T=case statement
  57. case ^\ of
  58.   : ;
  59.   : ;
  60. end;
  61. T=case statement (else)
  62. case ^\ of
  63.   : ;
  64.   : ;
  65. else ;
  66. end;
  67. T=class declaration (full)
  68. T^\ = class(T)
  69. private
  70.  
  71. protected
  72.  
  73. public
  74.  
  75. published
  76.  
  77. end;
  78. T=class declaration (short)
  79. T^\ = class(T)
  80.  
  81. end;
  82. T=class declaration (with overrides)
  83. T^\ = class(T)
  84. private
  85.  
  86. protected
  87.  
  88. public
  89.   constructor Create; override;
  90.   destructor Destroy; override;
  91. published
  92.  
  93. end;
  94. T=for (simple)
  95. for ^\ :=  to  do  ;
  96. T=for statement
  97. for ^\ :=  to  do
  98. begin
  99.  
  100. end;
  101. T=function declaration
  102. function ^\(): ;
  103. begin
  104.  
  105. end;
  106. T=procedure declaration
  107. procedure ^\();
  108. begin
  109.  
  110. end;
  111. T=if (simple)
  112. if ^\ then  ;
  113. T=if statement
  114. if ^\ then
  115. begin
  116.  
  117. end;
  118. T=if_else (simple)
  119. if ^\ then
  120.  
  121. else  ;
  122. T=if_else
  123. if ^\ then
  124. begin
  125.  
  126. end
  127. else
  128. begin
  129.  
  130. end;
  131. T=try_except
  132. try
  133.   ^\
  134. except
  135.  
  136. end;
  137. T=try_finally
  138. try
  139.   ^\
  140. finally
  141.  
  142. end;
  143. T=while (simple)
  144. while ^\ do  ;
  145. T=while statement
  146. while ^\ do
  147. begin
  148. end;
  149. T=with (simple)
  150. with ^\ do  ;
  151. T=with statement
  152. with ^\ do
  153. begin
  154.  
  155. end;
  156. T=Separator {-----}
  157. {-------------------------------------------------------------------}
  158. T=Separator (*---*)
  159. (*-----------------------------------------------------------------*)